home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_01_02
/
1n02014b
< prev
next >
Wrap
Text File
|
1990-07-08
|
694b
|
18 lines
==============================================================================
Listing 3. Host type definitions.
==============================================================================
/*--------------------------------------------------------------------------*/
/* Define integral data types */
/*--------------------------------------------------------------------------*/
typedef unsigned char uchar;
typedef unsigned short ushort;
typedef unsigned long ulong;
typedef unsigned long PTR;
typedef uchar far *HPTR;
==============================================================================